home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-addima.adb < prev    next >
Text File  |  1994-05-19  |  3KB  |  53 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                  S Y S T E M . A D D R E S S _ I M A G E                 --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Unchecked_Conversion;
  26.  
  27. function System.Address_Image (A : Address) return String is
  28.  
  29.    Result  : String (1 .. 2 * Address'Size / Storage_Unit);
  30.  
  31.    type Byte is mod 2 ** 8;
  32.    for Byte'Size use 8;
  33.  
  34.    Hexdigs :
  35.      constant array (Byte range 0 .. 15) of Character := "0123456789ABCDEF";
  36.  
  37.    type Bytes is array (1 .. Address'Size / Storage_Unit) of Byte;
  38.    for Bytes'Size use Address'Size;
  39.  
  40.    function To_Bytes is new Unchecked_Conversion (Address, Bytes);
  41.  
  42.    Byte_Sequence : constant Bytes := To_Bytes (A);
  43.  
  44. begin
  45.    for N in Bytes'range loop
  46.       Result (2 * N - 1) := Hexdigs (Byte_Sequence (N) / 16);
  47.       Result (2 * N)     := Hexdigs (Byte_Sequence (N) mod 16);
  48.    end loop;
  49.  
  50.    return Result;
  51.  
  52. end System.Address_Image;
  53.